It's dead code, Jim!
authorIlmari Karonen <vyznev@users.mediawiki.org>
Mon, 14 May 2007 07:40:10 +0000 (07:40 +0000)
committerIlmari Karonen <vyznev@users.mediawiki.org>
Mon, 14 May 2007 07:40:10 +0000 (07:40 +0000)
includes/Skin.php

index c038738..e53d579 100644 (file)
@@ -1428,29 +1428,6 @@ END;
                return $s;
        }
 
-       function dateLink() {
-               $t1 = Title::newFromText( gmdate( 'F j' ) );
-               $t2 = Title::newFromText( gmdate( 'Y' ) );
-
-               $id = $t1->getArticleID();
-
-               if ( 0 == $id ) {
-                       $s = $this->makeBrokenLink( $t1->getText() );
-               } else {
-                       $s = $this->makeKnownLink( $t1->getText() );
-               }
-               $s .= ', ';
-
-               $id = $t2->getArticleID();
-
-               if ( 0 == $id ) {
-                       $s .= $this->makeBrokenLink( $t2->getText() );
-               } else {
-                       $s .= $this->makeKnownLink( $t2->getText() );
-               }
-               return $s;
-       }
-
        function talkLink() {
                global $wgTitle;